home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 25 / CDROM25.iso / lazer / fpwtdemo / Poster.dcr / Behaviors_1_Gary's Pushbutton.ls next >
Encoding:
Text File  |  1998-02-10  |  2.1 KB  |  51 lines

  1. property UpCM, HiliteCM, DownCM, UpSound, button_active
  2.  
  3. on mouseDown me
  4.   set the member of sprite the spriteNum of me to member the DownCM of me
  5.   set the button_active of me to 1
  6. end
  7.  
  8. on mouseUp me
  9.   set the member of sprite the currentSpriteNum to member the HiliteCM of me
  10.   set the button_active of me to 0
  11.   puppetSound(1, the UpSound of me)
  12. end
  13.  
  14. on mouseEnter me
  15.   if the button_active of me then
  16.     set the member of sprite the spriteNum of me to member the DownCM of me
  17.   else
  18.     set the member of sprite the spriteNum of me to member the HiliteCM of me
  19.   end if
  20. end
  21.  
  22. on mouseLeave me
  23.   set the member of sprite the spriteNum of me to member the UpCM of me
  24. end
  25.  
  26. on mouseUpOutSide me
  27.   set the member of sprite the spriteNum of me to member the UpCM of me
  28.   set the button_active of me to 0
  29. end
  30.  
  31. on beginSprite me
  32.   if not (the UpCM of me) then
  33.     set the UpCM of me to the member of sprite the spriteNum of me
  34.   end if
  35.   set the button_active of me to 0
  36.   puppetSprite(the spriteNum of me, 1)
  37. end
  38.  
  39. on endSprite me
  40.   puppetSprite(the spriteNum of me, 0)
  41. end
  42.  
  43. on getPropertyDescriptionList
  44.   set p_list to [#UpCM: [#comment: "Normal Image:", #format: #member, #default: member 1], #HiliteCM: [#comment: "Hilite Image:", #format: #member, #default: member 1], #DownCM: [#comment: "Down Image:", #format: #member, #default: member 1], #UpSound: [#comment: "Sound for Release:", #format: #member, #default: member 1]]
  45.   return p_list
  46. end
  47.  
  48. on getBehaviorDescription
  49.   return "Prepares a sprite for use as a Pushbutton with automatic highlighting, button depression, button sound and mouse tracking. If the Normal Image parameter value is 0, the sprite's initial castmember will be assumed represent the button's normal state." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Normal Image - ( optional ) number of castmember providing image displayed when button is NOT pressed." & RETURN & "ΓÇó Hilite Image - number of castmember providing image displayed when button is rolled over." & RETURN & "ΓÇó Down Image - number of castmember providing image displayed when button is pressed." & RETURN & "ΓÇó Button Up Sound - number of castmember providing sound for button release."
  50. end
  51.